Running both backend and frontend code on one MacOS is recommended.
pipenv (brew install pipenv)
docker
Node.js > 8.9
npm > 6
vue > 3
cd ./backend
docker-compose up -d
pipenv install
cd ./app
pipenv run python manage.py migrate
pipenv run python manage.py runserver
curl http://localhost:8000/api/test/
=> supposed to see {"msg": "It works !!"}
cd ./frontend
npm install
npm run serve
go for http://localhost:8080, supposed to see the page for Create New Annotation Task:
homepage